home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PCGUIA 10
/
PC Guia 10.iso
/
database
/
shared.dir
/
01037_Script_spider drag
< prev
next >
Wrap
Text File
|
1996-03-14
|
432b
|
19 lines
on mousedown
set omh = the mouseh
set omv = the mousev
repeat while the mousedown
set mh = the mouseh
set mv = the mousev
set dh = mh - omh
set dv = mv - omv
repeat with i = 36 to 43
set the loch of sprite i = (the loch of sprite i)+dh
set the locv of sprite i = (the locv of sprite i)+dv
end repeat
updatestage
set omh = mh
set omv = mv
end repeat
end